
body{
    font-family: "Lexend Gigax","IBM Plex Serif";
    margin: 0;
    padding: 0;
    box-sizing:border-box;
    background-color: black;
    color: white;
    overflow-x: hidden;
    width:auto;
    height: auto;
}
.navbar{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: black;
}
.navbar ul{
    display: flex;
    gap: 20px;
}
.navbar li{
    list-style-type:none;
}
.navbar a{
    text-decoration: none;
    color: aliceblue;
}
.logo{
    font-weight: bold;
    font-size: x-large;
    color: red;
}
.profile img{
    border-radius: 15px;
}
.banner-section{
    position: relative;
    background: url('banner.jpg') center center/cover no-repeat;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.banner-content {
    text-align: center;
}
h1{
    font-size: 3rem;
}    
.banner-content p{
    font-size: 1.2rem;
    margin:10px 0 20px;
}
.banner-buttons{
    cursor: pointer;
}
button{
    background-color: #e50914;
    color: #fff;
    border: none;
    font-size: 1rem;
    padding: 10px 20px;
    margin: 0 10px;
}
.banner-buttons button:hover {
    background-color: #fff;
    color: black;
}
.movies{
   padding: 20px;
}
h2{
    font-size: 1.5rem;
    margin-bottom: 10px;
    margin-left: 10px;
}
.movies-row{
    display: flex;
    gap: 10px;
    overflow:auto;
    padding: 10px;
    width: 97%;
}
.movies-row img{
    object-fit:cover;
    cursor: pointer;
    border-radius: 5px;
}
.movies-row img:hover {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}
footer {
    text-align: center;
    padding: 20px 0;
    background-color: #141414;
    color: #999;
  }